Socket
Socket
Sign inDemoInstall

clipboardy

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clipboardy

Access the system clipboard (copy/paste)


Version published
Weekly downloads
3.8M
increased by3.27%
Maintainers
1
Weekly downloads
 
Created

What is clipboardy?

The clipboardy npm package allows for copying to and pasting from the system clipboard in Node.js applications. It provides a simple interface to interact with the clipboard on different operating systems.

What are clipboardy's main functionalities?

Copy text to clipboard

This feature allows you to copy text to the system clipboard. The `writeSync` method is used to synchronously write text to the clipboard.

const clipboardy = require('clipboardy');
clipboardy.writeSync('Text to copy');

Paste text from clipboard

This feature allows you to paste text from the system clipboard. The `readSync` method is used to synchronously read text from the clipboard and store it in a variable.

const clipboardy = require('clipboardy');
let text = clipboardy.readSync();
console.log(text);

Copy text to clipboard asynchronously

This feature allows you to copy text to the clipboard asynchronously. The `write` method returns a promise that resolves when the text has been copied.

const clipboardy = require('clipboardy');
clipboardy.write('Text to copy').then(() => {
  console.log('Text copied!');
}).catch(err => {
  console.error('Failed to copy text:', err);
});

Paste text from clipboard asynchronously

This feature allows you to paste text from the clipboard asynchronously. The `read` method returns a promise that resolves with the text from the clipboard.

const clipboardy = require('clipboardy');
clipboardy.read().then(text => {
  console.log('Pasted text:', text);
}).catch(err => {
  console.error('Failed to paste text:', err);
});

Other packages similar to clipboardy

Keywords

FAQs

Package last updated on 23 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc